fork download
  1. #include <bits/stdc++.h>
  2. using namespace std;
  3.  
  4. int main() {
  5. int N;
  6. cin >> N;
  7. if( N > 0) {
  8. cout << N;
  9. }
  10. return 0;
  11. }
Success #stdin #stdout 0s 5308KB
stdin
Standard input is empty
stdout
32764